home *** CD-ROM | disk | FTP | other *** search
- /*
- *--- PSpell.cpp ----------------------------------------------------------
- * Copyright (c) 1995-96 Adobe Systems Incorporated. All rights reserved.
- * Created on Sun, Oct 22, 1995 @ 4:19 PM by Paul Ferguson.
- *
- * Description: For notes about this class, refer to the
- * PCL documentation file PSpell.html
- *-------------------------------------------------------------------------
- */
-
- #include "PSpell.h"
- #include "PCommand.h"
-
- const size_t REQUEST_SIZE = 10;
-
- PSpell::PSpell
- ( short cRange,
- PMBool bWrapAround,
- PMBool bAltSpell,
- PMBool bShowDup,
- PMBool bIgnore)
- {
- short x[5];
-
- x[0] = cRange;
- x[1] = bWrapAround;
- x[2] = bAltSpell;
- x[3] = bShowDup;
- x[4] = bIgnore;
-
- PCommand command(pm_spell, x, REQUEST_SIZE);
- }
-
- // end of PSpell.cpp
-